home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / e / misc.save / 000128_fdc@panix.com_Wed Oct 31 16:26:26 2007.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: reader1.panix.com!panix!not-for-mail
  2. From: Frank Da Cruz <fdc@panix.com>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: Uploading files with FTP to MVS data sets
  5. Date: Wed, 31 Oct 2007 20:19:50 +0000 (UTC)
  6. Organization: PANIX Public Access Internet and UNIX, NYC
  7. Lines: 42
  8. Message-ID: <slrnfihor6.5v2.fdc@panix2.panix.com>
  9. References: <fg4e7i019rd@drn.newsguy.com> <fg51df02ff9@drn.newsguy.com>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: panix2.panix.com
  12. X-Trace: reader1.panix.com 1193861990 12491 166.84.1.2 (31 Oct 2007 20:19:50 GMT)
  13. X-Complaints-To: abuse@panix.com
  14. NNTP-Posting-Date: Wed, 31 Oct 2007 20:19:50 +0000 (UTC)
  15. User-Agent: slrn/0.9.8.0 (NetBSD)
  16. Xref: panix comp.protocols.kermit.misc:15700
  17.  
  18. On 2007-10-29, Maalobs <Maalobs_member@newsguy.com> wrote:
  19. : In article <fg4e7i019rd@drn.newsguy.com>, Maalobs says...
  20. :
  21. :> I'm trying to upload a file to an IBM MVS mainframe using
  22. :> K-95 V2.1.2, where the file is stored as a "data set".
  23. :> The full name of the data set (and hence, the file), is
  24. :> something like this:
  25. :> D123.XXXXXX.YYYYYY.20071029.1
  26. :
  27. :> The little I understand of these data sets, is that the '.'
  28. :> characters denote the equivalent of directory levels.
  29. : I think I figured out a part of the problem myself.  I learned that the
  30. : filename is illegal if a digit appears directly after a '.'.
  31. :
  32. : So I changed the filename to this:
  33. : D123.XXXXXX.YYYYYY.D071029.A1
  34. :
  35. : And in fact, the home directory I arrive at when I login, is 'D123.', so the
  36. : name I must use is:
  37. : XXXXXX.YYYYYY.D071029.A1
  38. :
  39. : With that knowledge I run 'put XXXXXX.YYYYYY.D071029.A1' in K95, but I still
  40. : get this error: Invalid data set name "XXXXXX_YYYYYY_D071029.A1".  Use MVS
  41. : Dsname conventions.
  42. :
  43. : Using this last method works with MS ftp.exe in Windows, but not with K95.
  44. :
  45. : Why does K95 insist on changing the filename?
  46. :
  47. Because on many operating systems, filenames containing multiple dots
  48. (periods) are illegal.
  49.  
  50. To get around this use:
  51.  
  52.   ftp put /filenames:literal D123.XXXXXX.YYYYYY.20071029.1
  53.  
  54. or:
  55.  
  56.   ftp mput /filenames:literal <wildcard>
  57.  
  58. - Frank